home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / kernel / jumpto / jumpto.s1 < prev    next >
Text File  |  1995-08-08  |  302b  |  18 lines

  1. //  Dynace jumpto.s for GNU C compiler (gcc) on 386 machines
  2.     .file    "jumpto.c"
  3. gcc_compiled.:
  4.     .ident "@(#)setjmp.h    2.3 - 88/05/27"
  5. .text
  6.     .align 4
  7. .globl __jumpToMethod
  8. __jumpToMethod:
  9.     pushl %ebp
  10.     movl %esp,%ebp
  11.     movl 8(%ebp),%eax
  12. /    call *%eax
  13. /    leave
  14. /    ret
  15.     leave
  16.     leave
  17.     jmp *%eax
  18.